ff3a595f7516266fb9f6ffe7e1732056493004fe,Ajax/Ajax/Sources/er/ajax/AjaxObserveField.java,AjaxObserveField,appendToResponse,#WOResponse#WOContext#,52

Before Change


		if (observeFieldID != null || updateContainerID != null) {
			AjaxUtils.appendScriptHeader(response);
			NSMutableDictionary options = createAjaxOptions(component);
			Boolean fullSubmitBoolean = (Boolean) valueForBinding("fullSubmit", component);
			boolean fullSubmit = (fullSubmitBoolean != null && fullSubmitBoolean.booleanValue());
			AjaxObserveField.appendToResponse(response, context, this, observeFieldID, updateContainerID, fullSubmit, options);
			AjaxUtils.appendScriptFooter(response);

After Change


			if (observeFieldID == null) {
				observeFieldID = AjaxUtils.toSafeElementID(context.elementID());
			}
			String elementName = (String)valueForBinding("elementName", component);
			if (elementName == null) {
				elementName = "div";
			}